home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_02 / 1002024c < prev    next >
Text File  |  1991-12-03  |  211b  |  7 lines

  1.  
  2. #define add()      (push(pop() + pop()))
  3. #define subtract() {int temp = pop(); (push(pop() - temp))}
  4. #define multiply() (push(pop() * pop()))
  5. #define divide()   {int temp = pop(); (push(pop() / temp))}
  6.  
  7.